Community Profile

photo

MKN


2013 年からアクティブ

Followers: 0   Following: 0

Professional Interests: Signal Processing

統計

All
  • First Review
  • Thankful Level 3
  • First Answer
  • Quiz Master
  • Creator
  • Commenter
  • Promoter
  • Solver

バッジを表示

Feeds

表示方法

質問


Need help in analyzing image planes
% CODE 1 % Read RGB image x = imread('Lena.jpg'); rPlane = x(:,:,1); imshow(rPlane) % Displays Red Plane in Lena.jpg...

約9年 前 | 1 件の回答 | 0

1

回答

回答済み
Cell Arrays to string
cellData = {'Matlab','is','a','high','level','programming','language'}; % Cell array combinedString = []; for i ...

約9年 前 | 0

質問


Grayscale, monochrome, binary image in matlab
In Matlab, 1. An 8-bit gray scale image has pixel values ranging from 0 to 255. The pixel depth may vary (16-bit, 32-bit, etc...

約9年 前 | 1 件の回答 | 1

1

回答

質問


I have an array of length 256. It has either 0's and 1's of type uint8. I would like to concatenate it so that it occupies less memory and then recover the original array back. please check the eaxample
x = [1 0 1 1 1 0 0 1...........1] % uint8. length = 256. size = 256*8 = 2048 bytes xbin = 1011100...........1 % ...

約9年 前 | 2 件の回答 | 0

2

回答

質問


How to remove duplicates in an array
Ex: In the array x=[1 2 2 3 3 3 4 5], i want to eliminate all repeating elements (2,3) and retain non-repeating elements (1,4,...

11年弱 前 | 3 件の回答 | 0

3

回答

質問


How to split letters in a word into an array
Ex: In the word *'HELLO'*, extract the letters *'H' 'E' 'L' 'L' 'O'*

11年弱 前 | 3 件の回答 | 0

3

回答