-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add multiple colorspaces to template comparison #113
Comments
Hi @choosehappy I need help opening the issue link from http://hawking.case.edu:3000/issues/197. Could you provide me with more information about this one? |
Not as informative as you'd hope :-\ here is a screenshot: but i can sketch it out quickly. if you look here: HistoQC/histoqc/HistogramModule.py Line 46 in 17d81c3
you'll see we always do a comparison in the RGB space a hopefully "simple" feature is to add the ability to perform this computation in a non-RGB colorspace, e.g., YUV, HSV, etc as specified by the user this is the relevant code from the redmine instance
The question is how to figure out the right bins. since for RGB, we know the min/max values and thus can always split the [0,255] color space into evenly. in YUV, i don't know what the external values are, so its not clear how to normalize the bins do you see what i mean? |
Hi @choosehappy, since we will use the image thumbnail and it should be not huge in pixels so I will use iterate each channel and find the ranges for each channel. |
I don't think this will work because you will end up with different values per image, and thus the end results won't be comparable between images? |
Author Name: Andrew Janowczyk (@choosehappy)
Original Redmine Issue: 197, http://hawking.case.edu:3000/issues/197
Original Date: 2018-05-02
not as easy as it seems, need to know each color spaces min/max value, and in the case of YUV they're not symmetric Y:[0,1] , U,V [-.5,.5]
The text was updated successfully, but these errors were encountered: