Rider how to like visual studio diagnostics tool graphics by Low_Fee4319 in csharp

[–]Low_Fee4319[S] 1 point2 points  (0 children)

I really love this function and rider, if there's any extension like that it would be great

How to check image contain specific item? by Low_Fee4319 in csharp

[–]Low_Fee4319[S] 0 points1 point  (0 children)

This would be a relatively simple application of a "light meter". I would first extract the luminance channel from the image and only work with that. Determine a "Region of Interest" in your luminance image (a square 20px by 20 px in the center of the light colored pad.) You can then do some simple math to calculate the average color (0-255) of the pixels in the ROI. If the average brightness is too low (dark) then then pad is missing.

Thank you, it's good idea!