Beispiel #1
0
std::string ZDvidUrl::getLocalBodyIdUrl(int x, int y, int z) const
{
  ZString url = getLabels64Url() + "/" + m_labelCommand + "/";
  url.appendNumber(x);
  url += "_";
  url.appendNumber(y);
  url += "_";
  url.appendNumber(z);

  return url;
}
Beispiel #2
0
std::string ZDvidUrl::getLocalBodyIdArrayUrl() const
{
  return GetFullUrl(getLabels64Url(), m_labelArrayCommand);
}
Beispiel #3
0
std::string ZDvidUrl::getLabels64Url(int sx, int sy, int sz,
    int x0, int y0, int z0, int zoom) const
{
  return getLabels64Url(m_dvidTarget.getValidSegmentationName(zoom),
                        sx, sy, sz, x0, y0, z0);
}
Beispiel #4
0
std::string ZDvidUrl::getLocalBodyIdArrayUrl() const
{
  ZString url = getLabels64Url() + "/" + m_labelArrayCommand;

  return url;
}
Beispiel #5
0
std::string ZDvidUrl::getLabels64Url(int sx, int sy, int sz,
    int x0, int y0, int z0) const
{
  return getLabels64Url(m_dvidTarget.getLabelBlockName(), sx, sy, sz, x0, y0, z0);
}