Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ceresimaging/rej

Package Overview
Dependencies
Maintainers
3
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ceresimaging/rej

Ceres Imaging, now with the power of Advanced Artificial AI Technology(TM)

  • 3.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
decreased by-38.46%
Maintainers
3
Weekly downloads
 
Created
Source

Interactive Image Registration for JupyterLab

Rej can be used to achieve registration between two images, probably GeoTIFFs, but any format rasterio can read should work fine.

Rej in action for georeferencing

Registration is achieved by selecting reference ("ground control") points on both images. A .PTS file is output containing pixel coordinates of corresponding points. Eventually, a new GeoTIFF can be output, we're working on it 🤙🏽.

Installing Rej

You'll need both the JupyterLab widget, as well as the python library:

jupyter labextension install @ceresimaging/rej
pip install rej

Using Rej

import rej
rej.register('./file1.tiff', './file2.tiff')

This should bring up the interactive UI shown above inside your jupyter notebook. Clicking "Save" will output a PTS file, which may be applied to the images to transform them. Enjoy!

Effective Rej Development

Most of Rej is written in Javascript/VueJS, which is then accessed through a thin python library. Development will mostly take place inside the context of JupyterLab, so its nice to set things up so every time you save a file, the JupyterLab extension is updated:

  1. pip install -r requirements.txt && pip install -e . && jupyter nbextension enable --py widgetsnbextension && jupyter labextension install --no-build @jupyter-widgets/jupyterlab-manager && npm install
  2. In one terminal: npm run watch
  3. In another terminal: npm run jupyterlab

Run outside JupyterLab for faster dev iteration

If you're working on a feature/bug that doesn't require jupyterlab, you may prefer to develop inside Vue CLI's hot-reloading app mode. To do this:

  1. npm run serve

Publish an updated version to pypi & npm (this will also update the ICIN build)

  1. Increment "version" in package.json
  2. npm run install
  3. npm run build
  4. npm run publish:all

Keywords

FAQs

Package last updated on 05 Dec 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc