photo

Tim Zaman


[TU Delft] Delft University of Technology

2011년부터 활동

Followers: 0   Following: 0

메시지

통계

All
MATLAB Answers

0 질문
8 답변

Cody

0 문제
1 답안

순위
11,522
of 300,364

평판
2

참여
0 질문
8 답변

답변 채택
0.00%

획득한 표
1

순위
 of 20,934

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
111,242
of 168,407

참여
0 문제
1 답안

점수
20

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • First Review
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

문제를 풀었습니다


How many monitors are connected ?
How to obtain the numbers of monitors connected to your computer ?

거의 13년 전

답변 있음
Translation of a 3D plane
Try RANSAC, i've got some on that here: <http://www.timzaman.nl/?p=190>

14년 초과 전 | 0

답변 있음
Improve Speed to Convert an RGB Image Stored as a Linear Array to a Matrix
use reshape: <http://www.mathworks.com/help/techdoc/ref/reshape.html> to reshape to [B(11) G(11) B(11) ; ... ] so that it is...

14년 초과 전 | 0

답변 있음
sketch recognition
The images you are using in this code have to be the exact amount of pixels: so if image 1 is 800x600, image 2 has to be 800x600...

14년 초과 전 | 0

답변 있음
Sorting matrices
Append A to B so that i believe the code is C=[A;B] so that: C = [4 6 3 2 9 0 1 5 7 8; 6 5 2 4 0 8 3 7 4 9] T...

14년 초과 전 | 1

답변 있음
Doubt math
I guess what you need is just a solver; for example you define syms ICC IR V1 Rs m VT Rp; solve('I = ICC - IR.*(2.718.^((V1+...

14년 초과 전 | 0

답변 있음
Doubts about image processing
I would recommend using photoshop (or equivalent) first to edit the image to a usable format, as photoshop in that matter is mor...

14년 초과 전 | 0

답변 있음
save figure as eps from command line
standard fucntion.. saveas(h,'filename.eps','eps')

14년 초과 전 | 0

답변 있음
How can I find saturated pixels in an image?
convert to LAB with the RGB2LAB function.. that splits into three components; the dimensions will be [L;A;B]instaed of [R;G;B].....

14년 초과 전 | 0