How do i convert matlab code into java code????
이전 댓글 표시
I have piece of matlab code, I am trying to convert that to java opencv code manually. But I am facing some problems while conversion, some of the functions are not available in java. So plz help me with those functions.
imj = im2double(y); r = imj(:,:,1); g = imj(:,:,2); b = imj(:,:,3);
rgbfcm=cast(o,class(y)); redPlane = y(:, :, 1).*rgbfcm; greenPlane =y(:, :, 2).*rgbfcm; bluePlane = y(:, :, 3).*rgbfcm; fcmrgb = cat(3, redPlane,greenPlane, bluePlane);
These are the functions/oprations that need to be converted to java. Plz Help me with these code.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 OpenCV Support에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!