The present invention relates to the technical field of network security, and more specifically relates to a method and device for feature extraction.
With the development of sciences and technologies, smart terminals are provided with more and more functions. For example, mobile phones have turned from traditional GSM and TDMA digital mobile phones into smart phones that have capabilities of processing multimedia resources and providing various kinds of information services such as network browsing, telephone conference, electronic commerce, etc. However, that also brings increasing varieties of malicious code attacks to the mobile phones and increasingly serious personal data security issues. Smart mobile phone users suffer deeply from more and more mobile phone viruses.
Mobile phone malicious code protection technologies perform protection against malicious codes. A variety of mobile phone malicious code protection approaches have been provided, for example, feature value scanning approach, virtual machine technology-based malicious code protection, heuristic scanning and similar samples clustering, etc. Regardless of which protection manners, besides an efficient scanning algorithm (also named as matching algorithm), a malicious code feature library that is reasonably organized is basis. Therefore, how to accurately and efficiently extract features is crucial to build a feature library or even to the entire protection technology.
In view of the problems above, a method and device for feature extraction according to the present invention is provided so as to overcome the above problems or at least partially solve the above problems.
According to one aspect of the present invention, there is provided a method for feature extraction, comprising acquiring a batch of black sample files and white sample files from an application layer of a smart terminal operating system; parsing each file to obtain information structure of all functions contained in each file, and computing a check code of each function; determining whether each file contains functions corresponding to respective check codes so as to count times that each function appears in the black sample files and white sample files; extracting black sample features based on functions only appearing in the black sample files while not appearing in the white sample files, or extracting white sample features based on functions only appearing in the white sample files while not appearing in the black sample files.
According to another aspect of the present invention, there is provided a device for feature extraction, comprising a file acquiring unit configured to acquire a batch of black sample files and white sample files from an application layer of a smart terminal operating system; a parsing unit configured to parse each file to obtain information structure of all functions contained in each file, and a check code computing unit configured to compute a check code of each function; a counting unit configured to determine whether each file contains functions corresponding to respective check codes so as to count times that each function appears in the black sample files and white sample files; an extracting unit configured to extract black sample features based on functions only appearing in the black sample files while not appearing in the white sample files, or extract white sample features based on functions only appearing in the white sample files while not appearing in the black sample files.
Thus by analyzing and computing the acquired black sample files and white sample files and counting times that a check code of each function appears in the files, the embodiments of the present invention only use functions appearing in the black sample files while not appearing in the white sample files as the basis for feature extraction. In this way, the fast and accurate feature extraction may guarantee building of an efficient feature library and guarantee implementation of the defending technologies. Preferably, the features may be optimized so as to detect most files with least features after acquiring a large amount of extractable black sample features.
The above are only summaries of the technical solutions of the present invention; in order to understand the technical means of the present invention more clearly, the implementation may be based on the content in the specification. Besides, in order to make the above and other objectives, features, and advantages of the present invention more apparent and comprehensible, preferred embodiments of the present invention will be specifically provided below.
Through reading detailed depiction of the preferred embodiments below, various other advantages and benefits become clear to a person those skilled in the art. The drawings are only used for the purpose of illustrating preferred embodiments, and should not be regarded as limitation to the present invention. Moreover, throughout the entire drawings, same reference numerals are used to indicate same components. In the accompanying drawings,
Hereinafter, exemplary embodiments of the present disclosure will be described in more detail with reference to the accompanying drawings. Although the drawings reveal the exemplary embodiments of the present disclosure, it should be understood that the present disclosure may be implemented in various forms and should not be limited by the embodiments illustrated here. On the contrary, these embodiments are provided for a more thorough understanding of the present disclosure and for a complete delivery of the scope of the present disclosure to those skilled in the art.
Android operating system, as an example, contains an application layer (app layer) and a system framework layer (framework layer); As for other layers that might be comprised in terms of functional partitioning, will not be discussed here. Wherein, the app layer may be generally understood as an upper layer, in charge of interfaces for interaction with a user, e.g., application maintenance, identifying different kinds of click contents upon clicking onto a page so as to display different context menus, and etc. The framework layer is generally used as an intermediate layer, mainly for forwarding a user request (e.g., starting an application, clicking on a link, click to save a picture, and the like) to a lower layer; and distributing contents completely processed by the lower layer to the upper layer either via a message or via an intermediate proxy class, so as to present them to the user.
The inventors of the present invention have found in researching that by counting times that a check code of a function contained in a sample file appears in files, it may be determined whether the function is a black sample or a white sample.
Refer to
The method for feature extraction comprises steps of
S101: acquiring a batch of black sample files and white sample files from an application layer of a smart terminal operating system;
Wherein, the black sample files refer to files preliminarily determined as containing a black sample, e.g., a file containing malicious codes, while the white sample files refer to files preliminarily determined not containing a black sample, e.g., a file not containing malicious codes. Those skilled in the art should understand that a feature library needs to be built during matching, detecting, and removing malicious codes, and building of the feature library is based on extracting features from sample files. In the embodiments of the present invention, whether a batch of files are black sample files or white sample files is preliminarily determined manually in advance. More black sample files and white sample files will be beneficial for accurate extraction of sample features.
In the embodiments of the present invention, the black sample files or white sample files may be, for example, dex files. Dex files refer to virtual machine executable files directly loaded and running in a Dalvik virtual machine (Dalvik VM) in Android system. Dalvik is a Java virtual machine for an Android platform. An optimized Dalvik allows concurrently running instances of multiple virtual machines in a limited internal memory, and each Dalvik application is executed as an independent Linux process. The independent process can prevent closing of all programs when the virtual machine breaks down. The Dalvik virtual machine may support running of a Java application that has been converted into a dex (Dalvik Executable) format. The dex format is a kind of compressed format specifically designed for Dalvik and is suitable for a system with limited memory and processor speed. Java source codes may be converted into a dex file by ADT (Android Development Tools) through a complex compilation. The dex file is an optimized result for an embedded system. The Dalvik virtual machine does not employ standard Java virtual machine instruction codes, but uses its specific instruction set. The dex file shares a plenty of class names and constant strings, thus its volume is small and operating efficiency is relatively high.
Specifically, obtaining a batch of black sample dex files and white sample dex files from a smart terminal may comprise finding an installation package of an application from an application layer of a smart terminal operating system; parsing the installation package to obtain a dex file of the application; using a dex executing file as a black sample file or a white sample file. For example, it can be obtained by parsing an APK (Android Package). The APK file is actually a compressed package of a zip format, but its affix name is modified to apk; a Dex file may be obtained after decompression via UnZip.
As previously mentioned, the Android operating system comprises an application layer (app layer) and a system framework layer (framework layer). The present invention focuses on study and improvement of the app layer. However, those skilled in the art understand that when the Android is started, Dalvik VM monitors all programs (APK files) and frameworks and create a dependency relationship tree for them. Through this dependency relationship tree, the Dalvik VM optimizes code for each program and stores the optimized codes into a Dalvik cache (dalvik-cache). In this way, all programs will use optimized code upon running. When a program (or framework) changes, the Dalvik VM will re-optimize the code and store them into the cache again. The cache/dalvik-cache is for depositing dex files generated by programs on the system, while data/dalvik-cache is for depositing dex files generated by data/app. In other words, the present invention focuses on analyzing and processing of dex files generated by data/app. However, it should be understood that the theory and operation of the present invention is likewise applicable to dex files generated by programs on the system.
S102: parsing each file to obtain information structure of all functions contained in each file, and computing a check code of each function;
Still taking a dex file as an example, parsing a file to obtain information structure of all functions contained in the file comprises decompiling the dex file to obtain decompiled information structure of all functions contained in the dex file.
Wherein, the dex file is decompiled in a plurality of manners.
Manner 1: parsing the dex file according to a dex file format to obtain a function information structure of each class; determining a location and size of the dex file according to fields in the function information structure, to obtain a decompiled function information structure. Wherein, by parsing the function information structure, a bytecode array field indicating a function position of the dex file and a list length field indicating a function size of the dex file are obtained, thereby determining the position and size of the function of the dex file.
For example, the dex file is parsed according to a dex file format to obtain the function information body of each class. The function information structure contains fields in Table 1.
Wherein, the insns_size and insns fields in each function information structure represent the function size and position, respectively. Then, the information structure of the function may be decompiled according to the fields insns_size and insns. The decompiled information structure is comprised of Dalvik VM bytes, which will be detailed later.
Manner 2: decompiling the dex file into a virtual machine byte code using a dex file decompilation tool.
As mentioned above, the Dalvik virtual machine runs a Dalvik bytecode, which exists in a dex executable file form. The Dalvik virtual machine executes codes by interpreting the dex file. Currently, some tools are provided to decompile a DEX file into Dalvik compilation codes, such dex file decompiling tools include baksmali, Dedexer 1.26, dexdump, dexinspecto 03-12-12r, IDA Pro, androguard, dex2jar, and 010 Editor, etc.
It is seen that all decompiled function information structure may be obtained by decompiling the dex file. Wherein, the function information structure comprises function execution codes, which, in the present embodiment, are formed by a virtual machine instruction sequence and a virtual machine memonic sequence. As the example below, the function information structure is formed by an instruction sequence of Dalvik VM and a memonic sequence of the Dalvik VM.
For example, a function information structure obtained by decompiling the dex file according to one embodiment of the present invention is specified below:
It is seen that the dex file is decompiled into an instruction sequence of Dalvik VM and a memonic sequence of the Dalvik VM. As indicated in the example above, in the function information structure obtained by decompilation, the first 2 digits of each line in the machine code field denote an instruction sequence (the left circled part in the example above), while the part corresponding to the instruction sequence is a memonic (right side of the example, partially circled, not completely selected). The memonic is mainly for facilitating user communication and code compilation.
After obtaining the information structure of each function, the check code of the function may be computed. Later, the check code may be used to represent its corresponding unique function. The check code of the function may be calculated using an existing or future algorithm. For example, a hash algorithm may be used to calculate the hash value of the function as the previous check code. Wherein, the hash algorithm has many kinds, e.g., CRC (Cyclic Redundancy Check), MD5 (Message Digest Algorithm), or SHA (Secure Hash Algorithm), etc.
S103: determining whether each file contains functions corresponding to respective check codes so as to count times that each function appears in the black sample files and white sample files.
This step is to count times that a hash value appears in a batch of black sample files and white sample files obtained in step S101.
Suppose a hash value of each function is determined by analyzing and computing the black sample files and white sample files; then, times that each hash value appears in the black sample files and white sample files are counted.
Suppose there are n sample files (including a part of black sample files and a part of white sample files), wherein the first file comprises function hash values A, B, C; the second file comprises function hash values A, C, D; the third file comprises function hash values B, C, E; . . . the nth file comprises hash values C, D. All in all, after all files are analyzed, suppose 5 function values A, B, C, D, E are determined. Then, times that the 5 hash values appear in the black samples and in white sample files are counted. Suppose the results are shown in Table 2 below after counting.
Those skilled in the art understand that different functions have different hash values, i.e., different hash values represent different functions; therefore, A, B, C, D, E are also employed subsequently to represent 5 functions or 5 features. Based on the times that the above hash values appear in the files, the times that each function appears in the files may be determined.
Preferably, before counting the times that each function appears in the black sample files and the white sample files, the method further comprises de-duplicating a check code of the function within the file. Specifically, de-duplicating the check code of the function within the file refers to for each file, if a plurality of functions have a same check code, extracting one function from the plurality of functions as a function corresponding to the check code. For example, suppose that for a dex file, the information structure of all functions contained therein are obtained by parsing it. Suppose that three information structure s1, s2, and s3 are parsed out; 3 hash values hash 1, hash 2, and hash 3 of the three information structure s1, s2, and 3 are obtained further through a hash algorithm. Those skilled in the art should understand, different functions have different hash values, i.e., different hash values represent different functions. Suppose that among the three hash values some are identical, e.g., hash 1=hash 2, then it is deemed that they represent the same function. In this case, any one of s1 and s2 is selected, while the other one is aborted.
S104: extracting black sample features based on functions only appearing in the black sample files while not appearing in the white sample files, or extracting white sample features based on functions only appearing in the white sample files while not appearing in the black sample files.
When extracting the samples, only functions appearing in the black sample files while not appearing in the white sample files are selected as black sample features. For example, still taking Table 1 as an example, functions B and E are selected for black sample feature extraction. Specifically, functions B, E are taken as black sample features, or part of codes of the functions B and E are taken as black sample features. Likewise, functions only appearing in the white sample files while not appearing in the black sample files are selected as white sample features. For example, still taking Table 1 for further illustration, function C is selected for performing white sample feature extraction. Specifically, function C may be used as a white sample feature or part of code of the function C is used as a white sample feature.
After the black sample feature is extracted in step S104, the following steps may be continued to execute the following steps: adding a black sample feature to the black sample feature library; matching a target file using the black sample feature library, and if the target file comprises a function or a subset of functions corresponding to the black sample feature, determining that malicious code exists in the target file. As understood by those skilled in the art, sample feature detecting and removing, virtual machine-based detecting removing, heuristic detecting and removing or similar samples clustering may be performed to the target files using the function corresponding to the black sample feature in the black sample feature library.
Hereinafter, the malicious code and the malicious code protection schemes (sample feature detecting and removing, virtual machine-based detecting and removing, heuristic detecting and removing, and similar samples clustering) will be introduced.
The malicious code refers to a program or code that is disseminated via a storage medium or a network, destroys integrity of the operating system and steals undisclosed confidential information in the system without authorization. With a mobile phone as an example, a mobile phone malicious code refers to a malicious code against a portable device and a PDA. The mobile phone malicious code may be simply divided into a replication-type malicious code and a non-replication-type malicious code, wherein the replication-type malicious code mainly contains a virus and a worm, while the non-replication-type malicious code mainly contains a Trojan horse, rogue software, a malicious mobile code, a rootkit program, and etc.
A mobile phone malicious code protection technology performs protection against malicious code. There are a plurality of mobile phone malicious code protection technologies. For example, a feature value scanning manner. First, it needs to learn in advance to build a malicious code feature library; the feature values saved in the malicious code feature library may be a segment of continuous fixed character strings, or several segments of definite character strings inserted with other discontinuous character strings having indefinite characters; during scanning, the to-be-detected file or the memory is detected based on the character feature or string in the feature library; when a matching item is found, it may be determined that the target is infected with malicious code. For another example, a virtual machine technology based malicious code protection. This kind of protection scheme is mainly directed against polymorph viruses and metamorphic viruses. The virtual machine refers to a complete computer system simulated through software to have a complete hardware system function and run in a completely isolated environment. This scheme is also referred to as a software simulation method, where a software analyzer simulates and analyzes program running using a software method. It essentially simulates a small closed program execution environment in the inner memory, and all files to be subject to virus detection and removal are executed virtually therein. When removing a virus using a virtual machine technology, the feature value scanning technology is also used first, and only when finding that the target has a feature of encrypted malicious code, will the virtual machine module be started to make the encrypted code decoded autonomously. After decoding, the traditional feature value scanning manner may be employed to detect and remove. For another example, a heuristic detection and removal manner. The heuristic detection and removal manner is mainly directed against constant mutation of malicious code for the purpose of enhancing the study on unknown malicious code. The so-called “heuristic” is originated from artificial intelligence, which refers to “a capability of self-discovery” or “a knowledge or technique that exerts a certain manner or method to judge an object.” The heuristic detection and killing of the malicious code means the scanning software can detect a virus by analyzing a structure of the program and its behavior using a rule extracted empirically. Because usual behaviors of a malicious code will have certain features such as reading and writing a file in an unconventional manner, terminating itself, or entering into a zero ring in an unconventional manner, so as to achieve the objectives of infection and damage. Therefore, whether a program is a malicious code may be determined by scanning specific behaviors or a combination of multiple behaviors. Besides, similar samples clustering may be performed to a target program, e.g., clustering similar samples determined through analysis using a K-mean value clustering algorithm.
Irrespective of which protection manner is used, its core always contains two parts. The first part is reasonably organized malicious code feature library; the second part is an efficient scanning algorithm (also referred to as a matching algorithm). The matching algorithm is generally divided into a single-mode matching algorithm and a multi-mode matching algorithm. The single-mode matching algorithm comprises a BF (Brute-Force) algorithm, a KMP (Knuth-Morris-Pratt) algorithm, a BM (Boyer-Moore) algorithm, and a QS (Quick Search) algorithm, etc. The multi-mode matching algorithm contains a typical multi-mode matching DFSA algorithm and an ordered binary tree-based multi-mode matching algorithm. Additionally, the matching algorithm may be divided into a fussy matching algorithm and a similar matching algorithm.
It should be noted that the present invention does not limit which malicious code protection solution is employed to detect a malicious code. For example, the sample feature detection and removal (feature value scan), the virtual machine-based scan, or heuristic detection and removal as introduced above may be employed. In addition, a similar sample clustering may also be performed. Moreover, the present application makes no limitation to the matching algorithm. For example, the fussy matching algorithm or similarity matching algorithm as introduced above may be employed.
There is such a scenario that a file set with function A being detected contains a file set with function B being detected. This scenario preferably uses function A as a feature, while abandons function B feature. This is because after a considerable number of black sample features are obtained, it is needed to consider how to detect most files with least features. The embodiments of the present invention achieve this objective through a feature optimization method.
To summarize, the feature optimization method comprises, for different file sets with different features, if one file set contains all files in another file set, the feature corresponding to a file set with a larger scope will be reserved, while the feature corresponding to the file set with a smaller scope will be abandoned. For example, suppose there are two features: a first feature and a second feature; the files containing the first feature form a first file set, while the files containing the second feature form a second file set; if the first file set contains all files in the second file set, the first feature is reserved, while the second feature is abandoned.
S201: establishing a vector for each feature with respect to all files;
S202: initializing a set;
S203: comparing the set sequentially with the vector of each feature;
S204: determining whether the set contains the compared vector; if the set contains the compared vector, performing S205; if the set does not contain the compared vector, performing S206;
S205: reserving the set;
S206: getting a union of the set and the compared vector;
S207: determining whether the vectors of all features have been compared; if so, performing S208; otherwise, returning to perform S203 to compare with the next feature vector;
S208: taking the features contained in the finally obtained set as the last reserved features.
Hereinafter, a preferred example is provided.
Suppose there are M black sample files and N extractable features (i.e., functions). An M-dimension vector is generated for each extractable feature; the ith-dimension vector represents whether the black sample file indexed by i can be detected with the feature.
For example, the vector generated by feature A is 1:1, 2:0, 3:1, 4:1, 5:0, 6:0. This represents that the feature may detect three files indexed by 1, 3, 4.
Steps:
initializing a set SA, which is compared sequentially with each feature vector;
if the SA comprises Mi, continuing to compare with the next feature vector set;
otherwise, getting a union of SA and Mi, and then continuing to compare with the next feature vector set.
For example, the vectors generated by features A, B, C, and D are specified below:
A: 1:0, 2:0, 3:1, 4:1, 5:0, 6:0
B: 1:1, 2:1, 3:1, 4:0, 5:0, 6:1
C: 1:1, 2:1, 3:1, 4:1, 5:0, 6:0
D: 1:1, 2:0, 3:1, 4:1, 5:1, 6:0
First Step:
Comparing vectors of A, B; because A does not contain B, getting the union of A and B to obtain a detected vector as AB: 1:1, 2:1, 3:1, 4:1, 5:0, 6:1;
Second Step:
Using AB to compare with C; because a file that may be detected by C can already be detected by AB, abandoning C;
Repeating the Second Step:
Using AB to compare with D, because D may detect file 5, while AB cannot; therefore, getting a union of AB and D;
Namely, ABD: 1:1, 2:1, 3:1, 4:1, 5:1, 6:1.
If feature E is followed, comparing ABD with the feature E, similar to the second step.
For four vectors A, B, C, and D, the finally chosen features are A, B, D.
Therefore, the shortest feature set of the M files may be detected.
Thus by analyzing and computing the acquired black sample files and white sample files and counting the times that a check code of each function appears in the files, the embodiments of the present invention only use the functions appearing in the black sample files while not appearing in the white sample files as the basis for feature extraction. In this way, the fast and accurate feature extraction may guarantee building of an efficient feature library and guarantee implementation of the protection technology. Preferably, the features may be optimized so as to detect most files with least features after acquiring a large amount of extractable black sample features.
Corresponding to the method above, the embodiments of the present invention further provide a device for feature extraction. The device may be implemented by software, hardware or a combination of software and hardware. Specifically, the device may be a terminal device or a functional entity inside the device. For example, the device may be a functional module inside the mobile phone. Preferably, the device is running under Android operating system.
The feature extracting device comprises:
a file acquiring unit 301 configured to acquire a batch of black sample files and white sample files from an application layer of a smart terminal operating system;
a parsing unit 302 configured to parse each file to obtain information structure of all functions contained in each file;
a check code computing unit 303 configured to compute a check code of each function;
a counting unit 304 configured to determine whether each file contains functions corresponding to respective check codes so as to count times that each function appears in the black sample files and white sample files;
an extracting unit 305 configured to extract black sample features based on functions only appearing in the black sample files while not appearing in the white sample files, or extract white sample features based on functions only appearing in the white sample files while not appearing in the black sample files.
preferably, the device further comprises a feature optimization unit 306 configured to for different file sets with different features, if one file set contains all files in another file set, reserve the feature corresponding to a file set with a larger scope, while abandoning the feature corresponding to the file set with a smaller scope. For example, when the first file set comprises all files in the second file set, the feature optimization unit 306 reserves a first feature corresponding to the first file set, while abandoning a second feature corresponding to the second file set.
Or, the device further comprises a feature optimization unit 306 configured to establish a vector for each feature with respect to all files; initialize a set to be compared sequentially with the vector of each feature; if the set contains the compared vector, reserve the set; if the set does not contain the compared vector, get a union of the set and the compared vector; sequentially compare the vectors of all features, and take the features contained in the finally obtained set as the last reserved features.
Preferably, the device further comprises: an inner de-duplicating unit 307 configured to perform intra-file de-duplication to a check code of a function. For example, the inner de-duplicating unit 307 is specifically configured to, for each file, if a plurality of functions have a same check code, extract a function from the plurality of functions as a function corresponding to the check code.
Wherein, the black sample files and the white sample files are all virtual machine executable files; the parsing unit 302 is specifically configured to decompile the virtual machine executable file to obtain a decompiled information structure of all functions contained in the virtual machine executable file.
Wherein, the check code computing unit 303 is specifically configured to compute a hash value of the information structure of the function to use the hash value as the check code of the function.
Wherein, the parsing unit 302 is further configured to parse the virtual machine executable file according to format of the virtual machine executable file to obtain the function information structure of each class; determine a position and size of each function of the virtual machine executable file according to fields in the function information structure, and obtain the decompiled function information structure of each function.
The parsing unit 302 is further configured to parse the function information structure to obtain a bytecode array field indicating the function position of the virtual machine executable file and a list length field indicating the function size of the virtual machine executable file; and determine a position and size of the function of the virtual machine executable file based on the bytecode array field and the list length field.
The parsing unit 302 is specifically configured to decompile the virtual machine executable file into a virtual machine bytecode using a virtual machine executable file decompilation tool.
Wherein, the extracting unit 303 is configured to take a function that only appears in the black sample file while not appearing in the white sample file as the black sample feature, or take a part of code of the function that only appears in the black sample file while not appearing in the white sample file as the black sample feature; or,
take a function that only appears in the white sample file while not appearing in the black sample file as the white sample feature, or take a part of code of the function that only appears in the white sample file while not appearing in the black sample file as the white sample feature.
Preferably, the device further comprises: a feature library adding unit 308 configured to add a black sample feature into the black sample feature library, and a matching unit 309 configured to match a target file using the black sample feature library; if the target file contains a function or a subset of functions corresponding to the black sample feature, determine that malicious code exists in the target file. Wherein, the matching unit specially may perform sample feature detection and removal, virtual-machine based detection and removal, heuristic detection and removal, and/or similar samples clustering to the target file using the function corresponding to the black sample feature in the black sample feature library.
Wherein, the black sample file refers to a file preliminarily determined as containing a black sample, while the white sample file refers to a file preliminarily determined as not containing a black file.
Wherein, the file extracting unit 301 is specifically configured to find an installation package of an application from an application layer of a smart terminal operating system; parse the installation package to obtain a virtual machine executable file of the application; and take the virtual machine executable file as a black sample file or a white sample file.
Regarding specific implementations of the device, the method embodiments may be referenced, which will not be detailed here.
The algorithm and display provided here are not inherently related to any specific computer, virtual system or other device. Various general systems may also be used with the teaching based on that. According to the depiction above, a structure required for building such system is obvious. In addition, the present invention is not directed to any specific programming language. It should be understood that various programming languages may be utilized to implement the content of the present invention depicted here, and the depiction above with respect to the specific language is for disclosing the preferred embodiments of the present invention.
The specification provided here illustrates many specific details. However, it should be understood that the embodiments of the present invention may be implemented without these specific details. In some embodiments, known methods, structure and technologies are not illustrated in detail so as not to blur the understanding of the present invention.
Similarly, it should be understood that in order to simplify the present disclosure and facilitate understanding one or more of various invention aspects, in the depiction of the exemplary embodiments of the present invention above, respective features of the present invention are sometimes grouped into a single embodiment, a figure or a depiction of the figure. However, the method of the present disclosure should not be interpreted as reflecting the following intentions: the present invention as claimed claims more features than the explicitly stated features in each claim. More specifically, as reflected by the claims below, the invention aspect is less than all features in a single embodiment as disclosed above. Therefore, the claims conforming to a specific embodiment are thereby explicitly incorporated in the specific embodiment, wherein each claim per se is used as a standalone embodiment of the present invention.
Those skilled in the art may understand that modules in a device in an embodiment may be adapted and provided in one or more devices different from the embodiment. Modules or units or components in an embodiment may be combined into one module or unit or assembly; besides, they may also be divided into a plurality of sub-modules or sub-units or sub-assemblies. Except that at least some of such features and/or processes or units are mutually exclusive, any combination may be employed to combine all features disclosed in the specification (including the appended claims, abstract and drawings) and all processes or units of any method or device such disclosed. Except otherwise explicitly stated, each feature disclosed in the present specification (including the appended claims, abstract, and drawings) may be replaced by alternative features providing same, equivalent or similar objectives.
Besides, those skilled in the art can understand that although some embodiments depicted here contain some features, rather than other features, contained in other embodiments, a combination of features from different embodiments means being within the scope of the present invention but forming a different embodiment. For example, in the appended claims, any one of the embodiments as claimed here may be used in any combination manner.
Various component embodiments of the present invention may be implemented by hardware or by software modules running on one or more processors, or implemented by their combination. Those skilled in the art should understand that in practice, a microprocessor or a digital signal processor (DSP) may be used to implement some or all functions of some or all components of the device for feature extraction according to the embodiments of the present invention. The present invention may also be implemented a device or device program (e.g., a computer program and a computer program product) for implementing a part or all of the method described here. Such a problem for implementing the present invention may be stored on a computer readable medium, or may have a form of one or more signals. Such signals may be downloaded from an Internet website, or provided on a carrier signal, or provided in any other form.
For example,
It should be noted that the embodiments above are intended to illustrate the present invention, not intended to limit the present invention; moreover, without departing from the scope of the appended claims, those skilled in the art may design an alternative embodiments. In the claims, no reference numerals contained within parentheses should constitute a limitation to the claims. The word “comprise” does not exclude elements or steps not stated in the claims. Wording like “a” or “an” before an element does not exclude existence of a plurality of such elements. The present invention may be implemented by virtue of hardware including a plurality of different elements and an appropriately programmed computer. In a device claim listing several means, several of such means may be embodied through the same hardware item. Use of words like first, second, and third and etc. does not indicate any sequence. These words may be explained as names.
Number | Date | Country | Kind |
---|---|---|---|
201310746033.6 | Dec 2013 | CN | national |
Filing Document | Filing Date | Country | Kind |
---|---|---|---|
PCT/CN2014/083910 | 8/7/2014 | WO | 00 |