As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am looking for an open source tool to help me create mosaic images based on a series of given images. I've been searching the web but couldn't come up with anything web oriented solution.
Do you know any such tools?
Thank you
This might be what you are looking for: http://www.openprocessing.org/sketch/39934
If you download the code and make a new refresh.jpg it should work. The code is written in processing which is very similar to java and can be run as an applet online if the user has java enabled in the browser.
Creating images is normally something you would do on the server side but this might come close to what you are looking for: http://ajaxian.com/archives/mosaic-image-builder-with-ajax
if you just want to show your images in an mosaic way you could use something like masonry: http://masonry.desandro.com/index.html
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I know C# and I want to start with ASP.NET (I already know how to build websites, using PHP).
I need good resource for ASP.NET (MVC, the latest version).
I have found other qustions, seemiler to mine, but what I want is your recommendations.
The ASP.NET website is a good place to start:
http://www.asp.net/mvc/mvc4
I would recommend reading some documentation, follow some tutorials, and give it a shot.
If you run into any problems, you can always find answers / ask questions on here.
There's nothing better than looking at working code for a non-trivial project to learn something new. I'd highly recommend going through the MVC Music Store tutorial and type in every line by hand to help you remember. By the end you'll have a real good idea of what MVC is and why it's so cool.
Wrox's Beginning ASP.NET 4: in C# and VB is a great book to start with.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am a software development student and have recently been introduced to parallel programming in c#.
I would like to make a application that contains the drag and drop functionality and parallel programming.
Any ideas that I can use for inspiration would be greatly appreciated.
Thanks.
What about dragging pictures (items) that involve an action from a 'Tasks' list to a 'Do' list. Once you drop an item, it starts a background task corresponding to the item.
You can have multiple tasks like:
Send an email
Connect to a webservice and get anything
...
Maybe the good point would be to decide which background tasks you could do.
** I assume that your app is build for testing purposes.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
Does anyone know the best opensource for .NET controls?
With Dev Express, Telerik, they so cool, but they are commercial version.
You can already find quite a lot of interesting stuff on Codeplex. And of course there's no stopping yourself to create your own custom controls for your application. Take a look at these tutorials: Developing Custom ASP.NET Server Controls..
How about Mono’s re-implementation of Windows Forms?
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
what are the best tools for c# to do image processing? i am a beginner and want to learn the basics
Try getting started with this:
http://code.google.com/p/aforge/
(Source: Are there any OK image recognition libraries for .NET?)
Once you learn the basics, you can try writing your own.
Try Emgu CV, it is the wrapper of opencv in .net. And you can get more information about it from :
http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=opencv+c%23
Also check the Image Processing Lab sample in C#, which uses AForge.NET library.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I have an iPhone client talking to a Windows server written in C#.The data from the device is sent as a binary plist.I am looking for a framework in C# that understands the binary plist and converts it into a dataset. On googling, I ran into plutil but that's a CLI and I need something that does it inline with the application.
Thanks
Plist serialization and de-serialization for C# and .NET.
I don’t know of any library for Windows that does this. But you might want to take the property list reading code from The Cocotron and port it to C#. It shouldn’t be too hard to do that.