Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
68 views

Is it possible to do a 'unity build' with Latex source files?

Those who know C++ may know what I mean by 'unity build': *.cpp files of a project are all effectively #include-ed into a single supermassive source file following #include directives specified in ...
2
votes
1answer
87 views

Post-processing in SQL vs. in code

I have a general inquiry related to processing rows from a query. In general, I always try to format/process my rows in SQL itself, using numerous CASE WHEN statements to pre-format my db result, ...
1
vote
1answer
71 views

Adding whirl effect on DirectX/OpenGL application

After we have finished rendering a frame either using DirectX or OpenGL in C++, I would like to add this "swirling" effect just on a portion of the frame. Something like this below: So how do we ...
1
vote
2answers
381 views

Computer Graphics/Image Processing Research

Greeting, I am currently at my final year at uni doing an MEng in Computer Science, and have to decide on a topic for a 1 semester long research project. Currently I find myself highly interested in ...
0
votes
1answer
31 views

Basic OCR PostProcessing (Spelling corrector)

I'm setting up a server to do a lot of automated OCR using tesseract, and I want to do some postprocessing of the results. There are a LOT of resources about this on the theoretical side, but I ...
0
votes
0answers
79 views

Downsampling is not working

Hey guys, I was having trouble downsampling a texture for post processing effect, apparently the downsampled texture is not getting any output(checked form PIX). The code is just basic 4x4 ...
0
votes
2answers
882 views

iPhone post-processing with a single FBO with Opengl ES 2.0?

I am trying to implement post-processing (blur, bloom, etc.) on the iPhone using OpenGL ES 2.0. I am running into some issues. When rendering during my second rendering step, I end up drawing a ...
0
votes
2answers
71 views

How should I filter this data?

I have a several series of data points that need to be graphed. For each graph, some points may need to be thrown out due to error. An example is the following: The circled areas are errors in the ...
0
votes
2answers
592 views

boolean variables posted through AJAX being treated as strings in server side

Following is a part of an AJAX functionality to add classes and packs to session cart:- The jquery part function addClassToCart(itemId) { addItemToCart(itemId,true); } function ...
0
votes
1answer
976 views

Paperclip save images as jpg with white background

I'd like to know how to convert png and gif files with alpha channel to jpg with white background with paperclip I tried this but, it doesn't work has_attached_file :photo, :whiny => false, ...
0
votes
1answer
357 views

How can I post-process files compiled using the Ant javac task?

I need the list of files that were compiled during this run. I want to feed this list to a subsequent post-processing step. I have found an option to list (see listfiles option) the files compiled ...