本歌单由Listen1创建, 歌曲数:83,歌单数:1,点击查看更多
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import skimage; | |
from skimage import data | |
from skimage.filters import threshold_otsu | |
from skimage.segmentation import clear_border | |
from skimage.measure import label | |
from skimage.morphology import closing, square | |
from skimage.measure import regionprops | |
from skimage.color import label2rgb | |
import cv2 | |
import numpy as np |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
@ViewInject(R.id.page_two) | |
private NestedScrollView pageTwo; | |
... | |
... | |
CoordinatorLayout.LayoutParams layoutParams = (CoordinatorLayout.LayoutParams) pageTwo.getLayoutParams(); | |
layoutParams.setBehavior(new PageBehavior(mAct, new PageBehavior.OnSwitchListener() { | |
@Override | |
public void onSwitch(int page) { |