Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はmatlabについてあまり知りません。 画像があります(png形式)。形式をjpegに変更するにはどうすればよいですか? 画像の DCT を行うコマンドが必要です
ありがとうございました
pngをjpegに変換するだけの場合は、次のようにします。
imwrite( imread( [imFilename, '.png'] ), [imFilename, '.jpg'] );