Meet multiple conditions (or)

3 次查看(过去 30 天)
Hi!
I wold like to show the objects of an image meeting a condition:
imshow(peroxi_3d_lab==condition)
This condition can be x, or y, or z or....
imshow(peroxi_3d_lab==1 | peroxi_3d_lab==3 | peroxi_3d_lab==10)....
Do I need to specify every condition? This would be bothering because I have many conditions (and different) for every image...and lots of images...
imshow(peroxi_3d_lab==[my_condition_array])
???
Thanks in advanced!

采纳的回答

Stephen23
Stephen23 2019-7-4
编辑:Stephen23 2019-7-4
ismember(peroxi_3d_lab,your_conditions_array)
Tip: with MATLAB it is always important to think in terms of operating on arrays: putting all of the conditions into one array makes it easier to use MATLAB.
  1 个评论
MARIA RODRIGUEZ SANZ
Got it!
imshow(max( ismember(peroxi_3d_lab,masd1),[],3))
Thanks a lot! :D :D :D

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by