| bio | website | thoralt.de |
|---|---|---|
| location | Germany | |
| age | 35 | |
| visits | member for | 7 months |
| seen | Jan 20 at 21:12 | |
| stats | profile views | 18 |
OSX and iOS programmer, electronics engineer.
|
Nov 19 |
accepted | Strange fseek()/fwrite() performance on MacOS |
|
Nov 19 |
answered | Strange fseek()/fwrite() performance on MacOS |
|
Nov 14 |
comment |
Strange fseek()/fwrite() performance on MacOS Please read again my "Completely absurd summary": When I write out all my 30.000 blocks linearly without fseek, then the whole process takes below 3 seconds. If I fseek to the same position as the file pointer already is, the performance drops by a factor of almost 40. Don't tell me that the system tries to move the disk head in the latter variant since this behaviour starts after the first few megabytes and no cache could be that small (given the fact that I still have ~2 GB of free, unused RAM on that machine). And yes, my OSX is 64 bits and has 8 GB of RAM which is enough for the above. |
|
Nov 14 |
revised |
Strange fseek()/fwrite() performance on MacOS deleted 10 characters in body |
|
Nov 14 |
asked | Strange fseek()/fwrite() performance on MacOS |
|
Nov 13 |
accepted | How can I speed up rotating a huge TIFF by 90 degrees |
|
Nov 13 |
comment |
How can I speed up rotating a huge TIFF by 90 degrees I profiled my code for large input files, it is now approx. 50 times faster (for files larger than my buffer), which is a great achievement. However, the speed could be drastically higher: Whenever I have to use fseek() to position the file pointer for the next fragment, I get a lot of processing time in the system's write function (I'm on MacOS) even if the fragments connect to each other (in case the image fits into the buffer). If for that case I remove fseek(), the contiguous fwrite()s are carried out much faster, which is not really clear to me. Any thoughts? |
|
Nov 13 |
comment |
How can I speed up rotating a huge TIFF by 90 degrees Thank you for your many thoughts on my topic. Reading the whole image into memory is not always possible, and my source data is line buffered. Since retrieving source data is more costly than writing, I decided to implement a buffer (256 MB) to hold as much input lines as possible and then scan through these lines column-wise to construct a fragment of an output line, which is written to disk. If the image fits into that buffer, rotation is performed almost instantly. If not, write operations are splitted into many small packets. |
|
Nov 13 |
comment |
How can I speed up rotating a huge TIFF by 90 degrees As stated above (second comment), simply setting a flag is not sufficient. The target machine needs the data reorganized since it will be processed along the y axis of the file VERY quickly (involves operating a laser at a high rate). The target machine simply has not enough time to read the image data by skipping through the file to random positions, the data must be provided as a linear stream. Additionally, I'm aware of the complexity of TIFF IFDs and I'm able to import and export TIFFs including parsing and creating IFDs of nearly any flavour with my library. |
|
Nov 13 |
comment |
How can I speed up rotating a huge TIFF by 90 degrees Unfortunately the receiving machine is a black box and only accepts data in a rotated form, while the design process spits out its images in an unrotated way. I need to bridge between these two and have no influence on the data itself. |
|
Nov 13 |
asked | How can I speed up rotating a huge TIFF by 90 degrees |
|
Oct 23 |
answered | objective C enable UIScrollView scroll while UIGestureRecognizerStateChanged |
|
Oct 18 |
comment |
UIButton does not move if called after addSubView I created an empty project, inserted your code, added a small plus button ( addMoreFieldsBtn) and an empty view (homeView). I tested it in the simulator and the button jumped to position (30, 30) as expected. I suggest you also create an empty test project and see if it works for you. |
|
Oct 17 |
comment |
Get UIBezierPath point.y with set point.x iphone Nice to hear I could help. BTW, I voted up your comment, now your reputation is high enough. If you care, you could now vote up, too :) |
|
Oct 17 |
comment |
Get UIBezierPath point.y with set point.x iphone Yes, but he didn't ask for curves. His initial question was very vague and probably impossible to answer. But from his first comment and the picture link you see a chart consisting of lines, that's why I suggested this solution. |
|
Oct 17 |
revised |
Get UIBezierPath point.y with set point.x iphone edited body |
|
Oct 17 |
answered | Get UIBezierPath point.y with set point.x iphone |
|
Oct 17 |
comment |
UIButton does not move if called after addSubView How do you set up your _addMoreFieldsBtn? Paste code showing the alloc/init/addsubview. |
|
Oct 17 |
comment |
Get UIBezierPath point.y with set point.x iphone The question is more than unclear. You need to get "point y" of what exactly? What do you mean by "point x" and "point y"? Are you talking about the x and y coordinates of one point or two different points? Please describe your problem. |
|
Oct 16 |
revised |
iPhone draw line with anchor points minor source fixes |