alan2here Posted September 21, 2012 Share Posted September 21, 2012 (edited) My idea is that a raster image file format could be created where the data for the image was interpreted as instructions in an algorythm language. That way people could encode however they liked, PNG, JPEG or some other means that hasn't been designed yet, regardless of if the recipient's computer has previously known about the algorithm or not. Directed search could also be used such as Genetic Algorithm (genetic programming), A* (it's a search too) or a varient of Monty Carlo Tree Search for this task to create the perfect algorythm for the image being compressed. Edited September 21, 2012 by alan2here Link to comment Share on other sites More sharing options...
ivanv Posted September 21, 2012 Share Posted September 21, 2012 i think You have a big one for me. i might like to have it to help all earth beings. alan2here, i'd like U to have my one among other if U can use it. a concept for programming, one beginning programming lang for all other langs where can compressed data be helpful. maybe U'd like to combine something with my one, if U want to. here is page: https://sites.google.com/site/synthprogramminglanguage/ Link to comment Share on other sites More sharing options...
alan2here Posted September 21, 2012 Author Share Posted September 21, 2012 Your example code: Car (Name -> "Car", Use -> "Ordinary", ScapeType -> "GroundScape"); Reminds me of C# where functions such as constructors can be used as so. Car("Car", "Ordinary", "GroundScape"); Or like this. Car (Name: "Car", Use: "Ordinary", ScapeType: "GroundScape"); I have this too: https://docs.google.com/document/d/1gycrYIa2C_iX5YHfDB6NyqxPXKhpQdb1OA77FjSbrvE/edit All going a off topic though. Link to comment Share on other sites More sharing options...
Ronald Hyde Posted September 29, 2012 Share Posted September 29, 2012 I'll draw you a nice analogy type picture. Most compression algorithms .rar, .zip, etc. have a self-extracting format available for use. You don't have to use it, but you may. This is more or less what you're describing, but you want to have options to it. Unlike the usual images formats these are executables, binaries, they yield a file, or a folder full of files. On the other hand, an image format is 'read' by another application and composed into a bitmap which is incorporated into the screen bitmap. So now you see exactly what is involved here and what options might be available to you. Link to comment Share on other sites More sharing options...
jacaboo Posted September 3, 2013 Share Posted September 3, 2013 now the link removed by mod can do all kinds of stuff, image conversion,procession ,annotation,barcode reading,generating and imag compression and so on. we need to make use of their brilliant ideas. thanks for sharing, that's awesome but somewhat overpriced for me who will just use it only once, do you have some cheaper or even free versions, any suggestion will be appreciated! Link to comment Share on other sites More sharing options...
momimage Posted March 18, 2014 Share Posted March 18, 2014 right, this image compresser <link removed by mod> by carolinewnew is too expensive for us. can anyone share some open source with me. thank you, Link to comment Share on other sites More sharing options...
imatfaal Posted March 18, 2014 Share Posted March 18, 2014 ! Moderator Note momimage - we don't like links to commercial sites could you explain what you need rather than link - Thanks Link to comment Share on other sites More sharing options...
AtomicMaster Posted March 18, 2014 Share Posted March 18, 2014 My idea is that a raster image file format could be created where the data for the image was interpreted as instructions in an algorythm language. That way people could encode however they liked, PNG, JPEG or some other means that hasn't been designed yet, regardless of if the recipient's computer has previously known about the algorithm or not. Directed search could also be used such as Genetic Algorithm (genetic programming), A* (it's a search too) or a varient of Monty Carlo Tree Search for this task to create the perfect algorythm for the image being compressed. This is a poor file format idea. To be able to express a raster image in a language, requires a context-free language, which means that you would have to design and (if you want it to be used) safely implement a full programming language into the library that interprets this file format, which is almost always a bad idea... We have languages that are already capable of doing this, OpenGL for an exceptionally good example, and you can write them in the languages that they have already implemented C/C++ for example, which already come with really good parsers and compilers. For a bonus, they even have the ability to export pictures in the above-mentioned formats, and can also write to the video buffer almost directly without using an image compression format (or i suppose it would technically be bmp). Just $.02 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now