Image to Vector

22 ビュー (過去 30 日間)
Ashish Bhatt
Ashish Bhatt 2011 年 12 月 18 日
コメント済み: juveria fatima 2018 年 3 月 30 日
Hi,
How Can I convert a JPEG image into a vector?
Thanks, Ashish
  1 件のコメント
Chandra Kurniawan
Chandra Kurniawan 2011 年 12 月 18 日
Vectorization??
Did you mean tracing??
Something such converting raster image to vector??

サインインしてコメントする。

採用された回答

Jan
Jan 2011 年 12 月 18 日
It depends.
You cannot convert a "JPEG image". JPEG is a file format and files are stored sequentially always. Therefore it is a kind of vector already.
The contents of the JPEG file can be imported as array using imread:
Img = imread(FileName);
For gray-scale images this is a 2D-matrix, for RGB-JPEGs this is a [Width x Height x 3] array. You can convert both to a vector by:
ImgVector = Img(:);
% Or:
ImgVector = rehsape(Img, 1, []);
But I cannot imagine how this could be useful.
  9 件のコメント
Ashish Bhatt
Ashish Bhatt 2011 年 12 月 20 日
Thank you Walter. That helps.
juveria fatima
juveria fatima 2018 年 3 月 30 日
how to get back image from vector

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by