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.
使用 Matlab,我必须使用这个给定的图形来转换图像的强度:
其中 s=T(r)
我完全不知道这种转变。这是一个家庭作业,有人可以帮助我至少识别这个功能吗?
这只是一条直线的方程,y=ax+b... 在 matlab 表示法中:
r=linspace(0,30,1000); %this can be whatever r units are... r=0:0.1:100 etc. T=2*(r-10).*(r>=10 & r<=20); plot(r,T)
将产生你刚刚绘制的情节......
解在 [10, 20] 的区间上为 s = 2r - 20,否则为 0。
然后,使用现有图像,可以修改强度。