找不到bigcommerce-stencil / citadel repo

时间:2016-02-24 02:39:06

标签: bigcommerce jspm

我按照模板found here的安装和设置说明进行操作。在运行$ jspm install Looking up npm:lodash Updating registry cache... Looking up github:bigcommerce-stencil/stencil-utils Looking up github:bigcommerce-stencil/citadel Looking up github:jspm/nodelibs-url Looking up github:vakata/jstree Looking up github:hubspot/pace warn Using local override for github:hubspot/pace@1.0.2 Looking up github:jackmoore/zoom Looking up github:browserstate/history.js Looking up github:asyncly/EventEmitter2 Looking up github:ftlabs/fastclick Looking up github:kenwheeler/slick Looking up github:casperin/nod Looking up github:components/jquery Looking up github:caolan/async Looking up github:bigcommerce-labs/foundation err Repo github:bigcommerce-stencil/citadel not found! warn Installation changes not saved. 命令之前,一切似乎都正常工作。这是输出:

github:bigcommerce-stencil/stencil-utils

如果我再次运行该命令,看起来似乎找不到$ jspm install Looking up npm:lodash Updating registry cache... Looking up github:bigcommerce-stencil/citadel Looking up github:bigcommerce-stencil/stencil-utils Looking up github:jspm/nodelibs-url Looking up github:casperin/nod Looking up github:kenwheeler/slick Looking up github:asyncly/EventEmitter2 Looking up github:vakata/jstree Looking up github:browserstate/history.js Looking up github:hubspot/pace warn Using local override for github:hubspot/pace@1.0.2 Looking up github:bigcommerce-labs/foundation Looking up github:components/jquery Looking up github:jackmoore/zoom Looking up github:ftlabs/fastclick Looking up github:caolan/async Downloading npm:lodash@3.10.1 Downloading github:hubspot/pace@1.0.2 Downloading github:jspm/nodelibs-url@0.1.0 Downloading github:casperin/nod@2.0.10 Downloading github:browserstate/history.js@1.8.0 Downloading github:bigcommerce-labs/foundation@5.5.3 Downloading github:vakata/jstree@3.2.1 Downloading github:asyncly/EventEmitter2@0.4.14 Downloading github:jackmoore/zoom@1.7.14 Downloading github:ftlabs/fastclick@1.0.6 Downloading github:kenwheeler/slick@1.5.5 err Repo github:bigcommerce-stencil/stencil-utils not found! warn Installation changes not saved. repo:

git clone https://github.com/bigcommerce-stencil/citadel.git

如果我再次运行它,我会得到原始输出。它似乎随意改变。所以,问题是,为什么不能找到这些回购?

我知道我可以访问repos,因为如果我尝试直接克隆它,它可以正常使用命令:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Emgu.CV;
using Emgu.CV.Features2D;
using Emgu.CV.Structure;
using Emgu.CV.Util;

namespace AphidCounter
{
    class Program
    {
        static void Main(string[] args)
        {
            // Read image
            Mat im_in = CvInvoke.Imread("myimage1.jpg", Emgu.CV.CvEnum.LoadImageType.Grayscale);
            //Mat im_in = CvInvoke.Imread("myimage2.png", Emgu.CV.CvEnum.LoadImageType.Color);
            Mat im = im_in;
            CvInvoke.Threshold(im_in, im, 40, 255, Emgu.CV.CvEnum.ThresholdType.BinaryInv);  // 60, 255, 1

            //CvInvoke.NamedWindow("Blob Detector", Emgu.CV.CvEnum.NamedWindowType.AutoSize);

            DetectBlobs(im, 0);

            CvInvoke.WaitKey(0);
        }

        static void DetectBlobs(Mat im, int c)
        {

            int maxT = 50;
            int minA = 125; // Minimum area in pixels
            int maxA = 550; // Maximum area in pixels

            SimpleBlobDetectorParams EMparams = new SimpleBlobDetectorParams();
            SimpleBlobDetector detector;

            EMparams.MinThreshold = 0;
            EMparams.MaxThreshold = 100;

            if (minA < 1) minA = 1;
            EMparams.FilterByArea = true;
            EMparams.MinArea = minA;
            EMparams.MaxArea = maxA;

            if (maxT < 1) maxT = 1;
            EMparams.MinConvexity = (float)maxT / 1000.0F; // 0.67

            EMparams.FilterByInertia = true;
            EMparams.MinInertiaRatio = 0.01F;

            EMparams.FilterByColor = true;
            EMparams.blobColor = 0;

            VectorOfKeyPoint keyPoints = new VectorOfKeyPoint();

            detector = new SimpleBlobDetector(EMparams);
            detector.DetectRaw(im, keyPoints);

            Mat im_with_keypoints = new Mat();
            Bgr color = new Bgr(0, 0, 255);
            Features2DToolbox.DrawKeypoints(im, keyPoints, im_with_keypoints, color, Features2DToolbox.KeypointDrawType.DrawRichKeypoints);

            // Show blobs
            CvInvoke.Imwrite("keypoints1.jpg", im_with_keypoints);
            CvInvoke.Imshow("Blob Detector " + keyPoints.Size, im_with_keypoints);

            System.Console.WriteLine("Number of keypoints: " + keyPoints.Size);

        }
    }
}

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

造成这种情况的问题是需要检查Github访问令牌repo,而不仅仅是与repo相关联的子资源。模板文档已更新以反映这一点。