photo

Chit La Pyae Myo Hein


Last seen: 5 years ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
3 Answers

RANK
22,683
of 300,392

REPUTATION
2

CONTRIBUTIONS
0 Questions
3 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20,933

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,335

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

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

5 years ago | 1

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

5 years 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...

5 years ago | 0