Skip to content

Commit

Permalink
Added a little bit of documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
abates committed Feb 26, 2018
1 parent c0e7ac7 commit 9b01d1d
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
Duplicate Image Search in GO
# Duplicate Image Search in GO

[![Build Status](https://travis-ci.org/abates/disgo.svg?branch=develop)](https://travis-ci.org/abates/disgo) [![GoDoc](https://godoc.org/github.com/abates/disgo?status.png)](https://godoc.org/github.com/abates/disgo) [![Coverage Status](https://coveralls.io/repos/github/abates/disgo/badge.svg?branch=develop)](https://coveralls.io/github/abates/disgo?branch=develop)
======

This package is still a work in progress, but it works well in my own testing.

### Example

```Go
package main

import "fmt"

import "github.com/abates/disgo"

func main() {
// Create a disgo database with the default radix index
db, _ := disgo.New()

// load an image into the database and get the hash back
file, _ := os.Open("test.png")
hash, _ := db.AddFile(file)
fmt.Printf("Image Hash: %08x\n", hash)

// search for all hashes with a Hamming distance of 3
// or less
matches, _ := db.SearchByHash(hash, 3)
fmt.Printf("Matches: %v\n", matches)
}

```

### TODO
- [ ] make radix index save/load functions thread safe
- [ ] add record storage (e.g. file path) to database

0 comments on commit 9b01d1d

Please sign in to comment.