我正在使用ImageJ作为库来处理图像,我需要获取RGB图像的绿色通道。ImageJ有用于此目的的方法吗?谢谢。
发布于 2012-10-15 20:18:23
在GUI中,它是
图像->颜色->拆分通道。
程序化的ColorProcesor包含一个方法
getChannel(int i) .
还有一个叫做ChannelSplitter的插件。
https://stackoverflow.com/questions/12833017
相似问题