Community Profile

photo

Chit La Pyae Myo Hein


Last seen: meer dan 3 jaar ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer
  • Revival Level 1

View badges

Feeds

View by

Answered
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...

meer dan 3 jaar ago | 1

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

meer dan 3 jaar ago | 0

Answered
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...

meer dan 3 jaar ago | 0