Skip to content

PaulCampbell/ReactPictureTagger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1c72bc6 Â· Jan 28, 2020

History

29 Commits
Jan 10, 2020
Jan 28, 2020
Jan 9, 2020
Jan 10, 2020
Jan 9, 2020
Jan 9, 2020
Jan 10, 2020
Jan 10, 2020
Jan 17, 2020
Jan 10, 2020
Jan 17, 2020
Jan 17, 2020
Jan 9, 2020

Repository files navigation

ReactPictureTagger

It's a react component for tagging pictures...

example screen grab

Could be useful for your data if you're doing something with an r-cnn.

Try it out

https://paulcampbell.github.io/ReactPictureTagger/

How to use it

You can check the example.

Basically something like this:

import ReactPictureTagger from '../../src'

const App = () => {
  const picture = {
    imageSrc: './images/muppets.png',
    imgAlt: 'Image 1',
    tags: [
      { top: 128, left: 5, width: 180, height: 190, name: 'Rizzo' },
    ]
  }

  function tagsUpdated(newTags) {
    console.log(newTags)
  }

  return (
    <ReactPictureTagger
      imageSrc={picture.imageSrc}
      imageAlt={picture.imageAlt}
      tags={picture.tags}
      showTags={true}
      tagsUpdated={tagsUpdated}
      />
  )
}

About

🌄 A react component for tagging images

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published