>> a = imread('view.jpg');
>> b = imadjust(a, [0,1], [1, 0]);
>> figure;
>> subplot(211);
>> imshow(a)
>> title('原图');
>> subplot(212)
>> imshow(b)
>> title('调整后')1.灰度变换之imadjust函数(实现图像灰度的反转)

相关文章:

  • 2021-11-27
  • 2021-04-04
  • 2021-12-08
  • 2021-09-04
  • 2021-12-29
  • 2021-10-12
猜你喜欢
  • 2021-11-19
  • 2021-05-22
  • 2021-12-20
  • 2021-05-30
  • 2022-12-23
  • 2021-11-27
相关资源
相似解决方案