?? nodevalue.cs
字號(hào):
//視頻描述體系的層次:
//幀描述(基于MPEG-7):
namespace MPEG7
{
public class frame
{
public enum ColorSpace //色空間表示
{
RGB, HSV, Monochrome,nothing
};
ColorSpace CS;
public ColorSpace _CS
{
set { CS = value; }
get { return CS; }
}
public int ColorHistogram; //顏色直方圖
public enum Homogeneous_Texture //場(chǎng)地材質(zhì)表示
{
Plastic_Area, Snow_Area, Water_Area, nothing
};
Homogeneous_Texture HT;
public Homogeneous_Texture _HT
{
set { HT = value; }
get { return HT; }
}
public string EdgeHistogram; //邊緣直方圖
public enum Region_Shape //區(qū)域形狀(限于體育場(chǎng)地)
{
Rectangle, Square, other_uniformed_playground, nothing
};
Region_Shape RS;
public Region_Shape _RS
{
set { RS = value; }
get { return RS; }
}
public enum Contour_Shape //輪廓形狀,包含場(chǎng)地信息
{
Parallel_Line_Number,
Curve_Number, nothing
};
Contour_Shape COS;
public Contour_Shape _COS
{
set { COS = value; }
get { return COS; }
}
public frame()
{
CS = ColorSpace.nothing;
ColorHistogram = 0;
HT = Homogeneous_Texture.nothing;
EdgeHistogram = "";
RS = Region_Shape.nothing;
COS = Contour_Shape.nothing;
}
};
//鏡頭描述
public class shot
{
//球員識(shí)別
public double axis_x_spand;
public double axis_y_spand;
public double axis_x_mid;
public double axis_y_mid;
public string face_feature;
public string duration; //比賽時(shí)長(zhǎng)
public string shot_type; //鏡頭種類
//Motion Shot_motion; //鏡頭變化;
public string location;
public string keyframeno;
public string shot_Importance; //鏡頭重要度;
public shot()
{
axis_x_spand = 0;
axis_y_spand = 0;
axis_x_mid = 0;
axis_y_mid = 0;
face_feature = "Invalid";
duration = "0";
shot_type = "Invalid";
location = "Invalid";
keyframeno = "0";
shot_Importance = "0";
}
};
//故事實(shí)體
public class story
{
public string shot_number; //鏡頭數(shù)目
public string Location; //比賽位置
public shot shots = new shot();
public string story_number;
public string Related_player; //選手
public string Duration_Time; //持續(xù)時(shí)間
public string Play_type; //比賽類型
public frame Key_Frame = new frame();
public string wholestory;
public story()
{
wholestory = "Invalid";
shot_number = "0";
Location = "Invalid";
story_number = "0";
Related_player = "Invalid";
Duration_Time = "0";
Play_type = "Invalid";
}
};
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -