Re: A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-05 Thread Walter Bright via Digitalmars-d-announce
On 12/5/2019 5:07 PM, Murilo wrote: Hi everyone. I've spent the last weeks working on a program which is able to read and understand text from an image file(OCR) by using a rudimentary neural network after training with a large amount of images(I made them myself, manually). It even shows a

A program that does OCR(Optical Character Recognition) inspired by Neural Networks

2019-12-05 Thread Murilo via Digitalmars-d-announce
Hi everyone. I've spent the last weeks working on a program which is able to read and understand text from an image file(OCR) by using a rudimentary neural network after training with a large amount of images(I made them myself, manually). It even shows a map of all the parts of the images

Re: Hunt XML released 1.0.0 rc! Support for parsing, encoding, serialize, unserialize, object binding ..

2019-12-05 Thread JN via Digitalmars-d-announce
On Thursday, 5 December 2019 at 16:48:01 UTC, zoujiaqing wrote: ## Sample code for it ```D import hunt.xml; @XmlRootElement("user") class User { @XmlAttribute("ID") int id = 1001; @XmlElement("USERNAME") string name; } I like the declarative API, can't wait to give it a go.

AMQP Protocol library for D is ported!

2019-12-05 Thread zoujiaqing via Digitalmars-d-announce
# hunt-proton AMQP Protocol library for D programming language. Ported from [Apache qpid proton-j](http://qpid.apache.org/proton/index.html). Hunt Proton is a high-performance, lightweight messaging library. It can be used in the widest range of messaging applications, including brokers,

Re: Hunt XML released 1.0.0 rc! Support for parsing, encoding, serialize, unserialize, object binding ..

2019-12-05 Thread zoujiaqing via Digitalmars-d-announce
Just based on a quick check, it looks like the `validate` method used in your example is just about strictly correct XML -- does the library provide any support for validating messages against a schema? Yes, we will add valid() function to check it. And -- mostly out of curiosity -- what

Re: Hunt XML released 1.0.0 rc! Support for parsing, encoding, serialize, unserialize, object binding ..

2019-12-05 Thread Adam D. Ruppe via Digitalmars-d-announce
On Thursday, 5 December 2019 at 16:14:01 UTC, Joseph Rushton Wakeling wrote: And -- mostly out of curiosity -- what are the major differences compared to other D XML libraries or my beloved dom.d

Re: Hunt XML released 1.0.0 rc! Support for parsing, encoding, serialize, unserialize, object binding ..

2019-12-05 Thread Joseph Rushton Wakeling via Digitalmars-d-announce
On Thursday, 5 December 2019 at 15:55:29 UTC, zoujiaqing wrote: # Hunt-XML A XML library for D Programming Language. Support for parsing, encoding, serialize, unserialize, object binding! ## Features * DOM parser: parse XML Document * DOM writer: to string and to file * Object

Hunt XML released 1.0.0 rc! Support for parsing, encoding, serialize, unserialize, object binding ..

2019-12-05 Thread zoujiaqing via Digitalmars-d-announce
# Hunt-XML A XML library for D Programming Language. Support for parsing, encoding, serialize, unserialize, object binding! ## Features * DOM parser: parse XML Document * DOM writer: to string and to file * Object serialization/deserialization ### Sample code for parsing ```D import