We (my team and I) are currently using it on a university project. The purpose is to detect available parking spaces on the streets relying on video surveillance cameras and image recognition.
We are using Maven and we added this repository for Neuroph dependency :
<repository>
<id>neuroph.org</id>
<url>http://neuroph.sourceforge.net/maven2</url>
</repository>
Unfortunatly there is not the 2.8 version of Neuroph (2.7 only). Is that possible for you to add the 2.8 version of Neuroph to this (or an other) Maven repository ? with Maven Javadoc and Maven sources it would be very great
Thanks again for that great work !
Steve and Damien
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I agree with @Christopher - the maven repository path for v2.8 release is malformed. It looks like the version number was mistakenly injected in between the groupId and artifactId.
Using Gradle (Android), I can successfully add the dependency for v2.7:
compile 'org.neuroph:neuroph-core:2.7'
but v2.8 fails:
compile 'org.neuroph:neuroph-core:2.8'
Last edit: Sean Barbeau 2014-08-06
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
Thanks for that nice framework !
We (my team and I) are currently using it on a university project. The purpose is to detect available parking spaces on the streets relying on video surveillance cameras and image recognition.
We are using Maven and we added this repository for Neuroph dependency :
<repository>
<id>neuroph.org</id>
<url>http://neuroph.sourceforge.net/maven2</url>
</repository>
Unfortunatly there is not the 2.8 version of Neuroph (2.7 only). Is that possible for you to add the 2.8 version of Neuroph to this (or an other) Maven repository ? with Maven Javadoc and Maven sources it would be very great
Thanks again for that great work !
Steve and Damien
Sure, here it is
http://neuroph.sourceforge.net/maven2/org/neuroph/2.8/
Sounds like very interesting project that you're doing. Let me know once you finished it to link to it at http://neuroph.sourceforge.net/applications.html
Could you elaborate on how to add neuroph as a maven dependency? I can't get it to work. Thanks
Put the following in your pom file:
<repositories>
<repository>
<id>neuroph.sourceforge.net</id>
<url>http://neuroph.sourceforge.net/maven2/</url>
</repository>
</repositories>
to add repository, and
<dependencies>
<dependency>
<groupId>org.neuroph</groupId>
<artifactId>neuroph-core</artifactId>
<version>2.8</version>
</dependency>
</dependencies>
to add dependency to neuroph-core
Add other dependencies the same way as needed
Zoran, I think there is an error in the 2.8 Maven layout, which does not exist in the 2.7 layout. Notice the difference between
http://neuroph.sourceforge.net/maven2/org/neuroph/neuroph-core/2.7/ and
http://neuroph.sourceforge.net/maven2/org/neuroph/2.8/neuroph-core/2.8/
The '2.8' between the groupId and artifactId confuses Maven and it cannot find the 2.8 version. Maven can, however, find the 2.7 version just fine.
I think if you move the 2.8 versions to be beside the 2.7 versions, like so
http://neuroph.sourceforge.net/maven2/org/neuroph/neuroph-core/2.7/ and
http://neuroph.sourceforge.net/maven2/org/neuroph/neuroph-core/2.8/ ,
then Maven will be happy and everyone will be able to build with Maven and version 2.8. For now I am building with version 2.7.
I agree with @Christopher - the maven repository path for v2.8 release is malformed. It looks like the version number was mistakenly injected in between the groupId and artifactId.
Using Gradle (Android), I can successfully add the dependency for v2.7:
but v2.8 fails:
Last edit: Sean Barbeau 2014-08-06
You're right, I'll change that. Thanks!
Its fixed now, let me know if it works as expected
I think you broke even the 2.7 version now.
Maven says:
[INFO] Downloading: http://neuroph.sourceforge.net/maven2/org/neuroph/neuroph-core/2.8/neuroph-core-2.8.pom
[WARNING] The POM for org.neuroph:neuroph-core:jar:2.8 is missing, no dependency information available
You have to move both directories 2.7 and 2.8 to the right place so maven can find it.
Last edit: xochi 2014-08-16
ok thanks. It should work now, there is:
http://neuroph.sourceforge.net/maven2/org/neuroph/neuroph-core/2.7
http://neuroph.sourceforge.net/maven2/org/neuroph/neuroph-core/2.8
http://neuroph.sourceforge.net/maven2/org/neuroph/neuroph-core/2.9 (will be released with full source soon)
yup, it works now. had to clean the project first