photo

Chit La Pyae Myo Hein


Last seen: 4 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer
  • Revival Level 1

查看徽章

Feeds

排序方式:

已回答
MATLAB : Aligning RGB Channels
%Read the image img = imread('course1image.jpg'); [r,c] = size(img); B = img(1:r/3,:); G = img((r/3)+1:(2*r/3),:); R = im...

4 years 前 | 1

已回答
Color Imaging - RGB Channels
See: https://www.mathworks.com/matlabcentral/answers/558349-color-imaging-rgb-channe#answer_460078

4 years 前 | 0

已回答
MATLAB: Image Gradient Magnitude : Compute: Sobel Image Gradients (Gx and Gy) Gradient magnitude (Gmag) and Gradient direction(Gdir)
img=imread('cameraman.tif'); [Gx,Gy]=imgradientxy(img,'sobel'); %Uncomment the code below to visualize Gx and Gy figure i...

4 years 前 | 0