Skip to content
View Xonxt's full-sized avatar
Block or Report

Block or report Xonxt

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. frst frst Public

    Implementation of Fast radial symmetry transform with OpenCV

    C++ 17 4

  2. Sending a cv::Mat from C++ to a Pyth... Sending a cv::Mat from C++ to a Python script
    1
    /*
    2
    This requires adding the "include" directory of your Python installation to the include diretories 
    3
    of your project, e.g., in Visual Studio you'd add `C:\Program Files\Python36\include`. 
    4
    You also need to add the 'include' directory of your NumPy package, e.g. 
    5
    `C:\Program Files\PythonXX\Lib\site-packages\numpy\core\include`.
  3. A function, that allows more flexibi... A function, that allows more flexibility when rendering text with OpenCV in Python. You can add text outline, draw a list of strings with just one call, and even align the text block horizontally or vertically relative to an anchor point.
    1
    import numpy as np
    2
    import cv2
    3
    from enum import Enum
    4
    
                  
    5
    class Align(Enum):
  4. Python_Utilities Python_Utilities Public

    Different utilities and functions for ML and CV purposes

    Python 1