One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| import pandas as pd | |
| import numpy as np | |
| import cv2, os | |
| import scipy | |
| from scipy import signal | |
| import csv | |
| circle_color, line_color = (255,255,0), (0,0,255) | |
| window_length, polyorder = 13, 2 | |
| sd = "workout" |
| // see http://introcs.cs.princeton.edu/java/92symbolic/Polynomial.java.html | |
| public class Polynomial{ | |
| private int[] coef; // coefficients | |
| private int deg; // degree of polynomial (0 for the zero polynomial) | |
| // a * x^b | |
| public Polynomial( int a, int b ){ | |
| coef = new int[ b + 1 ]; |
| #!/usr/bin/env python | |
| # | |
| # Shows GOP structure of video file. Useful for checking suitability for HLS and DASH packaging. | |
| # Example: | |
| # | |
| # $ iframe-probe.py myvideo.mp4 | |
| # GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED | |
| # GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED | |
| # GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED | |
| # GOP: IPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP 60 CLOSED |
| /* | |
| * Copyright (C) 2014 Square, Inc. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| /* | |
| * Copyright (C) 2015 Hooked On Play | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| git config --global alias.hist "log --pretty=format:'%C(yellow)[%ad]%C(reset) %C(green)[%h]%C(reset) | %C(red)%s %C(bold red){{%an}}%C(reset) %C(blue)%d%C(reset)' --graph --date=short" |
| export ANDROID_HOME=/Applications/Android\ Studio.app/sdk/ | |
| cd facebook-android-sdk-3.14 | |
| gradle facebook:build | |
| mv facebook/build/libs/facebook.aar facebook/build/libs/facebook-3.14.aar | |
| mvn install:install-file -Dfile=facebook/build/libs/facebook-3.14.aar -DgroupId=com.facebook -DartifactId=android-sdk -Dversion=3.14 -Dpackaging=aar |
| Unless specified otherwise, all of the below tinting applies to both Lollipop and pre-Lollipop using AppCompat v21. | |
| To use the support version of these attributes, remove the android namespace. | |
| For instance, "android:colorControlNormal" becomes "colorControlNormal". | |
| These attributes will be propagated to their corresponding attributes within the android namespace | |
| for devices running Lollipop. Any exceptions to this will be noted by including the "android:" prefix. | |
| All Clickable Views: | |
| ----------- |
| pixelToPoint = function(point, zoom, center, bounds) { | |
| // 像素到坐标 | |
| if (!point) { | |
| return | |
| } | |
| var zoomUnits = getZoomUnits(zoom); | |
| var mercatorLng = center.lng + zoomUnits * (point.x - bounds.width / 2); | |
| var mercatorLat = center.lat - zoomUnits * (point.y - bounds.height / 2); | |
| var mercatorLngLat = {lng: mercatorLng, lat: mercatorLat}; | |
| return mercatorToLngLat(mercatorLngLat) |