imagetile

package
v0.7.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 13, 2015 License: BSD-3-Clause Imports: 23 Imported by: 0

Documentation

Overview

Package imagetile implements DVID support for imagetiles in XY, XZ, and YZ orientation. All raw tiles are stored as PNG images that are by default gzipped. This allows raw tile gets to be already compressed at the cost of more expensive uncompression to retrieve arbitrary image sizes.

Index

Constants

View Source
const (
	Version  = "0.1"
	RepoURL  = "github.com/janelia-flyem/dvid/datatype/imagetile"
	TypeName = "imagetile"
)
View Source
const HelpMessage = `` /* 9344-byte string literal not displayed */

Variables

View Source
var DefaultTileSize = dvid.Point3d{512, 512, 512}
View Source
var (
	ErrNoMetadataSet = errors.New("Tile metadata has not been POSTed yet.  GET requests require metadata to be POST.")
)

Functions

This section is empty.

Types

type Data

type Data struct {
	*datastore.Data
	Properties
}

Data embeds the datastore's Data and extends it with voxel-specific properties.

func (*Data) ConstructTiles

func (d *Data) ConstructTiles(uuidStr string, tileSpec TileSpec, request datastore.Request) error

func (*Data) DefaultTileSpec

func (d *Data) DefaultTileSpec(uuidStr string) (TileSpec, error)

Returns the default tile spec that will fully cover the source extents and scaling 0 uses the original voxel resolutions with each subsequent scale causing a 2x zoom out.

func (*Data) DoRPC

func (d *Data) DoRPC(request datastore.Request, reply *datastore.Response) error

DoRPC handles the 'generate' command.

func (*Data) GetImage

func (d *Data) GetImage(ctx storage.Context, src *imageblk.Data, geom dvid.Geometry, isotropic bool) (*dvid.Image, error)

GetImage returns an image given a 2d orthogonal image description. Since imagetile tiles have precomputed XY, XZ, and YZ orientations, reconstruction of the desired image should be much faster than computing the image from voxel blocks.

func (*Data) GetTile

func (d *Data) GetTile(ctx storage.Context, req tileReq) (image.Image, error)

GetTile returns a 2d tile image or a placeholder

func (*Data) GetTileKey

func (d *Data) GetTileKey(uuid dvid.UUID, ctx storage.Context, w http.ResponseWriter,
	r *http.Request, parts []string) (string, error)

GetTileKey returns the internal key as a hexadecimal string

func (*Data) GobDecode

func (d *Data) GobDecode(b []byte) error

func (*Data) GobEncode

func (d *Data) GobEncode() ([]byte, error)

func (*Data) Help

func (d *Data) Help() string

func (*Data) MarshalJSON

func (d *Data) MarshalJSON() ([]byte, error)

func (*Data) PostTile

func (d *Data) PostTile(uuid dvid.UUID, ctx storage.Context, w http.ResponseWriter,
	r *http.Request, parts []string) error

PostTile stores a tile.

func (*Data) Send

func (d *Data) Send(s message.Socket, roiname string, uuid dvid.UUID) error

Send transfers all key-value pairs pertinent to this data type as well as the storage.DataStoreType for them.

func (*Data) ServeHTTP

func (d *Data) ServeHTTP(uuid dvid.UUID, ctx *datastore.VersionedCtx, w http.ResponseWriter, r *http.Request)

ServeHTTP handles all incoming HTTP requests for this data.

func (*Data) ServeTile

func (d *Data) ServeTile(uuid dvid.UUID, ctx storage.Context, w http.ResponseWriter,
	r *http.Request, parts []string) error

ServeTile returns a tile with appropriate Content-Type set.

type Format

type Format uint8
const (
	LZ4 Format = iota
	PNG
	JPG
)

func (Format) String

func (f Format) String() string

type IndexTile

type IndexTile struct {
	*dvid.IndexZYX
	// contains filtered or unexported fields
}

IndexTile implements the Index interface and contains tile coordinates where (0,0,...) is at the coordinate (not index) origin. Tile coordinates are converted to unsigned integers when serialized to bytes.

func NewIndexTile

func NewIndexTile(i dvid.IndexZYX, plane dvid.DataShape, scaling Scaling) *IndexTile

func (*IndexTile) Bytes

func (i *IndexTile) Bytes() []byte

Bytes returns a byte representation of the Index.

func (*IndexTile) Duplicate

func (i *IndexTile) Duplicate() dvid.Index

func (*IndexTile) IndexFromBytes

func (i *IndexTile) IndexFromBytes(b []byte) error

IndexFromBytes sets an index from bytes.

func (*IndexTile) Scheme

func (i *IndexTile) Scheme() string

func (*IndexTile) String

func (i *IndexTile) String() string

type LevelSpec

type LevelSpec struct {
	Resolution dvid.NdFloat32
	TileSize   dvid.Point3d
}

func (LevelSpec) Duplicate

func (spec LevelSpec) Duplicate() LevelSpec

type Properties

type Properties struct {
	// Source of the data for these imagetile.
	Source dvid.InstanceName

	// Levels describe the resolution and tile sizes at each level of resolution.
	Levels TileSpec

	// Placeholder, when true (false by default), will generate fake tile images if a tile cannot
	// be found.  This is useful in testing clients.
	Placeholder bool

	// Encoding describes encoding of the stored tile.  See imagetile.Format
	Encoding Format

	// Quality is optional quality of encoding for jpeg, 1-100, higher is better.
	Quality int
}

Properties are additional properties for keyvalue data instances beyond those in standard datastore.Data. These will be persisted to metadata storage.

type Scaling

type Scaling uint8

Scaling describes the scale level where 0 = original data resolution and higher levels have been downsampled.

type SourceData

type SourceData interface{}

SourceData is the source of the tile data and should be voxels or voxels-derived data.

type TileScaleSpec

type TileScaleSpec struct {
	LevelSpec
	// contains filtered or unexported fields
}

TileScaleSpec is a slice of tile resolution & size for each dimensions.

type TileSpec

type TileSpec map[Scaling]TileScaleSpec

TileSpec specifies the resolution & size of each dimension at each scale level.

func LoadTileSpec

func LoadTileSpec(jsonBytes []byte) (TileSpec, error)

LoadTileSpec loads a TileSpec from JSON data. JSON data should look like:

{
   "0": { "Resolution": [3.1, 3.1, 40.0], "TileSize": [512, 512, 40] },
   "1": { "Resolution": [6.2, 6.2, 40.0], "TileSize": [512, 512, 80] },
   ...
}

Each line is a scale with a n-D resolution/voxel and a n-D tile size in voxels.

func (TileSpec) MarshalJSON

func (tileSpec TileSpec) MarshalJSON() ([]byte, error)

MarshalJSON returns the JSON of the imagetile specifications for each scale level.

type Type

type Type struct {
	datastore.Type
}

Type embeds the datastore's Type to create a unique type with tile functions. Refinements of general tile types can be implemented by embedding this type, choosing appropriate # of channels and bytes/voxel, overriding functions as needed, and calling datastore.Register(). Note that these fields are invariant for all instances of this type. Fields that can change depending on the type of data (e.g., resolution) should be in the Data type.

func NewType

func NewType() *Type

NewDatatype returns a pointer to a new voxels Datatype with default values set.

func (*Type) Help

func (dtype *Type) Help() string

func (*Type) NewDataService

func (dtype *Type) NewDataService(uuid dvid.UUID, id dvid.InstanceID, name dvid.InstanceName, c dvid.Config) (datastore.DataService, error)

NewData returns a pointer to new tile data with default values.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL