Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如我想找到这张图片中心的颜色值
我怎样才能做到这一点?
你的意思是
img = imread('img.jpg'); color = img(round(end/2), round(end/2), :)
?