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

Block or report tlancon

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. barbellcv barbellcv Public

    Track your barbell using computer vision for velocity-based insights in your training.

    Python 22 2

  2. CIM CIM Public

    Map images to one another with landmarks and create a script view them in napari.

    Python 1

  3. Dictionary of All US States and thei... Dictionary of All US States and their Abbreviations
    1
    # Inspired by https://gist.github.com/JeffPaine/3083347
    2
    # Access full state names using us_states.keys()
    3
    # Access all state abbreviations using us_states.values()
    4
    us_states = {
    5
    	'Alabama': 'AL',
  4. Call this function to launch a napar... Call this function to launch a napari window with a given image to begin annotating true positives, false positives, and false negatives on the image with points layers.
    1
    import os
    2
    import napari
    3
    from skimage.io import imread, imsave
    4
    
                  
    5
    def napari_count_tfpn(screenshot_file, point_size=20, save_screenshot=True):