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

Block or report arccoder

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

  1. opencvdragrect opencvdragrect Public

    Drag a rectangle on an image window using opencv

    Python 39 21

  2. redact-docx redact-docx Public

    Python code to redact contents in word (docx) document.

    Python 5 5

  3. Pandas: Sort within groups Pandas: Sort within groups
    1
    # Load the Pandas libraries with alias 'pd'
    2
    import pandas as pd
    3
    
    
    4
    # Read csv to dataframe
    5
    df = pd.read_csv("data.csv")
  4. Process the output of cv2.HoughLines... Process the output of cv2.HoughLines from OpenCV using functions that do Polar to Cartesian line conversion, Intersection of Cartesian lines, Line end points on image. https://arccoder.medium.com/process-the-output-of-cv2-houghlines-f43c7546deae
    1
    """
    2
    Script contains functions to process the lines in polar coordinate system
    3
    returned by the HoughLines function in OpenCV
    4
    5
    Line equation from polar to cartesian coordinates