kigurai

1,522
Reputation
209 views

Registered User

Name kigurai
Member for 1 year
Seen 6 hours ago
Website
Location Linköping, Sweden
Age 25
Computer Engineering Master's student specializing in Computer Vision and Graphics.
10h
comment Matrix power to minimize error in neural network using Newton’s method
Uhm, what's the actual question?
10h
accepted [Matlab] Storing Results of a Operation in a Matrix
11h
comment Running code in MatLab/Mathematica only after having written it all
Then feel free to accept this as the answer :)
12h
answered Running code in MatLab/Mathematica only after having written it all
13h
answered Database structure question
13h
comment Algorithm that Generate Unique Serial Number for Each English Word
@Ewan: While I agree that there is possibly another way of doing it, I can see no answer yet that proposes a method that produces a guaranteed unique key for each word. Using a good enough hashing function the risk should be negligable but collissions can still occur, right?
15h
comment MPEG-1 compression - producing macroblocks
So, you have 4 Y matrices of size 8x8, one Cb matrix of size 8x8 and one Cr matrix also of size 8x8 and you want to know how to put them together to a 8x8x6 matrix?
17h
comment MPEG-1 compression - producing macroblocks
Is the problem how to get the block from the picture (splitting the image) or the YCbCr-calculations?
18h
revised my OpenGl project
edited tags
18h
comment my OpenGl project
You whistle while crouching and spin around three times. Then the code will automagically appear from your behind... But seriously, this question is way to general to be answerable.
19h
comment How to compute the output ?
If you understand recursion, the question is not hard at all to solve using pen and paper. Take it from someone who have had a pen and paper exam in LISP where the number of parentheses had to be exactly right ;)
21h
comment [Matlab] Storing Results of a Operation in a Matrix
You are missing an "end" in that for-loop. Also to append objects (which can be slow, mind you) just do: x(end+1) = new_value;
21h
answered [Matlab] Storing Results of a Operation in a Matrix
1d
answered Color Detection using YCrCb color space?
1d
comment Count number of points inside a circle fast
Why did this get upvotes? It does not give any (valid) practical suggestion to solve the problem.
1d
comment request in matlab plz ?
This should be a comment, since it is really not an answer to the specific question. Even if there is no specific question yet :)
1d
comment request in matlab plz ?
Exactly what is it you need help with?
1d
revised Calculate most common values
Corrected B
1d
comment How many digits in this base ?
@debanjan, yes I noticed that it does not work for n=7 and base=2.
1d
comment Calculate most common values
You will want to use values(:) since A is a matrix and not neccessarily a vector. Also, sortrows can easily be made to sort descending by using sortrows(res, -2) instead.
1d
answered Calculate most common values
1d
revised Sum diff problem/bug in XSLT 1.0
edited tags
1d
comment Tab-completion of filenames as arguments for MATLAB scripts
@prm: Sadly, the source code for imread() shows nothing that indicates that it has that functionality.
1d
comment Tab-completion of filenames as arguments for MATLAB scripts
@gnovice: Nope. With imread() then yes, typing a "'" and pressing tab shows a list of files. Trying that with a function I wrote myself does not have that behaviour.
2d
comment Calculating point of intersection based on angle and speed
If you have two objects that are traveling at different speeds and want to find the collission point I am quite sure that traveling perpendicular to each other will very very seldom produce the correct result. Maybe you are thinking of the closest distance between a point and a line which will be between the point and a point on the line such that the vector between them are perpendicular to the line?
2d
comment Calculating point of intersection based on angle and speed
Is the speed of R always lower than that of T? Otherwise you have some cases when an intersection can never occur. Like if R is a car going south on a road and T a human running on the same road, but starts north of the car. The human will never intersect the path of the car.
2d
comment Break Polyhedron into Tetrahedron
Delaunay trinagulation is fortunately available as MATLAB builtins in the function "delaunay"
2d
comment Converting UTF-8(or other 8-bit encoding) to 7 or fewer bits.
I second this. No need to do fancy and error prone bit fumbling when there are perfectly good compression algorithms that will most likely do a much better job compared to a simple mapping from 8 to 7 bits.
Dec
2
accepted How do I use the least squares approximation in MATLAB?
Dec
2
answered How do I use the least squares approximation in MATLAB?
Dec
2
comment [SOLVED]Python images comparison
@fortran: I agree: Shifting the image should not change the frequency content much. The problem I see is that all the images will have a very similar frequency content, so using that as a feature for image comparison will be very flaky.
Dec
2
comment set of n-linear equations in matlab
@Alex: Yes, and it will produce a warning saying so. It will perform better than inv(A)*B though. I checked your solution as well, and it suffers from the same problem (while it is longer to type).
Dec
1
answered How to detect and correct broken lines or shapes in a bitmap?
Nov
30
accepted Good book on computer vision algorithms in C++ (with easy to understand code samples)
Nov
30
answered Go - How to read/write to file?
Nov
30
comment Function pointers in MATLAB
+1: Detailed and exhaustive(?) answer!
Nov
30
comment [SOLVED]Python images comparison
@fortran I have not done any exhaustive testing myself but I have never seen any computer vision method for image similarity that involves anything so simple. Also, it was proposed by my professors that so is the case. And it seems to be verified by the OP ;)
Nov
30
comment Multithreading won’t work as expected
+1 This has been my problem a few times. Also instead of "endl" you can use "flush" if you don't want the actual endline character.
Nov
30
comment [SOLVED]Python images comparison
Just to emphasize: Even though two histograms are equal it does not necessarily imply that the two images that generated them are in any way structurally similar. They just happen to have the same distribution of colors. The US and UK flags will probably generate similar histograms, to take one example.
Nov
30
comment [SOLVED]Python images comparison
If you are more spcific in what type of pictures you have, and in what ways they can be different (scale, rotation, lighting, ...) it will be much easier to give a good answer and solution.
Nov
30
comment [SOLVED]Python images comparison
The problem with this approach is that (natural) photographs generally have very similar frequency content. So an FFT alone will most likely not work very well. I would assume that this is true for quite a lot of other domains of subjects as well.
Nov
30
comment [SOLVED]Python images comparison
For reference: One of the "standard" motion estimation algorithms is the Lucas-Kanade tracker.
Nov
30
comment [SOLVED]Python images comparison
There are a lot more sophisticated motion estimation ("Shift measurement") algorithms around. Your method will fail miserably if the region you check is chosen badly (not intrinsically 2D).
Nov
30
answered Good book on computer vision algorithms in C++ (with easy to understand code samples)
Nov
30
comment How To Rotate Image By Nearest Neighbor Interpolation Using Matlab
This is how rotation is usually performed since it avoids processing pixels which are not visible in the final result anyway.
Nov
27
answered set of n-linear equations in matlab
Nov
24
answered Resources for Image Recognition
Nov
23
accepted Multiplying a tuple by a scalar
Nov
23
accepted How to stop sound in MATLAB?
Nov
23
answered Multiplying a tuple by a scalar