I tried to use the Probe volume with model but it didn’t work . I used the RGBA volume to Probe volume with the model (with direct color mapping) and I choose my segmented model. My goal is to try to export my segmented models with the RGB volume as texture.
I’ve checked the scene. The problem was that the transform was not hardened on the rgb volume and CLI modules, such as “Probe volume with model” do not take into account transforms that are dynamically applied to a node. You can harden a transform in Data module by right-clicking on the icon in the transform column.
OBJ format does not support per-vertex color, so you would need to save this model as a format that does, for example VTK, VTP, or PLY. If you must use OBJ format then you can load the per-vertex colored model into a 3D modeling software and create a texture from the per-vertex colors.
You can save the RGB values in PLY by a few lines of Python script, but I’ve submitted a pull request that makes this available automatically via standard save data feature. It will be probably available in Slicer Preview Release on Monday or Tuesday.