-
Hi All, I am curious if anyone can provide some documentation/help using the ImageMasking node (or best practice outside of this node)? I combed through some old posts, but the seemed they were before the ImageMasking node was implemented. My set up: using a turntable with reference sheet (sam porter's) inside a photo box. I can change out the colors, but would prefer black or white as background. Questions: What is the input/output for this node (e.g. where in the pipeline should it go? If using black/white background should I be using HSV or greyscale? If using HSV, I see parameters for green, white, or black, but not sure which Hue value to use (or maybe it doesn't matter here)? I appreciate any help, and apologize if this is redundant from somewhere else, Jeremy |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 12 replies
-
You can get the setting by hovering over the parameter (but yes, the hue info is missing): The Input from the ImageMasking connects to CameraInit. There are also some new features for marker detection that will be useful (I need to write up some text for it ;) ) |
Beta Was this translation helpful? Give feedback.
You can get the setting by hovering over the parameter (but yes, the hue info is missing):
HSV
Green : default values
White : Hue=AnyValue, Tolerance=1, minSaturation=0, maxSaturation=0.1, minValue=0.8, maxValue=1
Black : Hue=AnyValue, Tolerance=1, minSaturation=0, maxSaturation=0.1, minValue=0, maxValue=0.2
The Input from the ImageMasking connects to CameraInit.
The output of the ImageMasking node can be connected to FeatureExtraction (use mask for in camera estimation) Masking Input and the PrepareDenseScene Masking Input (applies the undistort to the mask and combines it with the RGB to a RGBA image).
There are also some new features for marker detection that will be useful (I need to…