Matrix of an Image
조회 수: 3 (최근 30일)
이전 댓글 표시
By manipulating the associated matrix of an image I need to create an up-side-down as well as left-to-right corresponding image. How can this be done with an image?
댓글 수: 0
답변 (1개)
Image Analyst
2015년 2월 4일
flippedImage = flipud(yourImage); Flip top to bottom.
flippedImage = fliplr(yourImage); % Flip left and right.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!